home *** CD-ROM | disk | FTP | other *** search
/ Programming with VisualAge for Java / IBMVJAVA.ISO / scrapbook / ch07 / page 2 < prev   
Encoding:
Text File  |  1997-07-24  |  297 b   |  10 lines

  1. ch07.CheckingAccount acct = new ch07.CheckingAccount("1234-5678");
  2. try {
  3.     acct.credit( 30.0);                            
  4.     acct.debit( 140.0);                
  5.     System.out.println("new balance: " + acct.getBalance());
  6. catch ( ch07.InsufficientFundsException e) 
  7. {
  8.         System.out.println("Exception: " + e.getMessage());
  9. }